home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 February
/
EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso
/
progs
/
editor
/
frexxed
/
fpl
/
deletespaceeol.fpl
< prev
next >
Wrap
Text File
|
1995-07-18
|
524b
|
19 lines
int export DeleteSpaceEOL()
{
int line = ReadInfo("line");
int byte = ReadInfo("byte_position");
int visible = Visible(0);
GotoLine(1);
Status(0, "Removing trailing white spaces...");
Replace(1, "( |\t)+\n", "\n", "wf+");
Status(0, "Removing trailing white spaces... done!");
GotoLine(line, byte);
Visible(visible);
}
ConstructInfo("cut_trails", "", "", "WGB", "", 0, 1, 1);
Hook("Save", "DeleteSpaceEOL();", "cut_trails");
MenuAdd("subse", "delete space-eols", "cut_trails", "", 6, 6, -1);
MenuBuild();